Conversation
When export is blocked by uncommitted changes, users can now commit directly from the modal and auto-proceed to export. Shows a commit form with "Commit & Export" button for committable issues, with an "allow issues" checkbox when unresolved workflow issues coexist.
Developers can add [tool.uv.sources] with editable paths to pyproject.toml for local development without risk of committing them. The pre-commit hook strips the section before commit and post-commit restores it. Also updates install-hooks.sh to install both hooks and chain with bd, and bumps the mock API size threshold from 850KB to 950KB to match codebase growth.
Gate the beforeConfigureGraph and afterConfigureGraph hooks on managed state so non-managed ComfyUI installations fall through to native missing resource warnings. Change default setup state from 'managed' to 'no_workspace' to handle the race condition where hooks fire before fetchSetupStatus resolves.
EnvironmentSwitcher was calling getSwitchStatus() and listEnvironments()
which didn't exist on the service composable, causing runtime crashes.
- Add listEnvironments() to composable returning full API response
({environments, current, is_managed}) instead of just the array
- getEnvironments() now delegates to listEnvironments() for compat
- Fix getSwitchStatus() → getSwitchProgress() in polling loop
- Guard against null progress response to prevent crash on .state access
Complements the pre-commit hook approach with a proper git clean filter so pyproject.toml no longer shows as modified during development.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan